home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / gt1700_5.zip / README.15 < prev    next >
Text File  |  1990-12-15  |  58KB  |  1,238 lines

  1.  
  2. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3. GT POWER 15.50 - Terminal Mode                                       4-15-90
  4. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  5.  1.  The number of external protocols supported has been expanded from 10
  6.      to 15 protocols.
  7.  
  8.  2.  ENQ answer back.  For systems requiring a response to the ^E
  9.      character.   If you need to use an answer back to ^E, please
  10.      look under the Alt-I Misc. options and fill in the needed
  11.      response, use the same syntax as a macro key.  For example, '|' for
  12.      carriage return, and '~' for a 1 second delay.
  13.  
  14.  3.  A new entry has been added to the phone directory, the DIAL SCRIPT.
  15.      The DIAL SCRIPT is used to handle complex requirements needed to
  16.      dial some numbers, i.e. when the built-in dialing routines can't
  17.      handle the job.
  18.  
  19.      In a DIAL SCRIPT, the script writer must use the new command DIALER to
  20.      dial the modem.  DIALER automatically works with the number selected
  21.      from the phone directory and will set the %FAIL variable to reflect
  22.      whether the connection can be made.  If the DIAL SCRIPT is successful
  23.      in reaching the indicated system, a new command is available to signal
  24.      the results to GT POWER.
  25.  
  26.                     SET ONLINE true|false
  27.  
  28.                     For example:   SET ONLINE TRUE
  29.  
  30.      Would cause the program to do logging and exit the DIAL SCRIPT.  If
  31.      one is specified, GT POWER will chain automatically to the LOGON SCRIPT.
  32.  
  33.      The DIALER command has no parameters, please refer to the example
  34.      below:
  35.  
  36.          ;                    The %NAME variable is passed in
  37.          ;                    from the phone directory selection.
  38.          writeln "Attempting to dial '" %name "' !!!"
  39.          ;                    The DIALER command dials the selected
  40.          ;                    entry automatically.  You may issue
  41.          ;                    SENDLN and GETLN commands prior to using
  42.          ;                    the DIALER for handling PC Pursuit, etc.
  43.          ;                    DIALER will issue the "ATDT123-4567" to
  44.          ;                    the modem.
  45.          dialer
  46.          case %FAIL
  47.             TRUE
  48.                 goto BUSY
  49.          esac
  50.          writeln "Success!"
  51.          twait 1000
  52.          ;                    The SET command quits the script.
  53.          ;                    The SET command must be used to exit
  54.          ;                    from a DIAL SCRIPT.
  55.          set online true
  56.          :BUSY
  57.          case %BUSY
  58.              TRUE
  59.                  writeln "The line is busy..."
  60.                  twait 1000
  61.                  set online false
  62.          esac
  63.          writeln "Failed to make connection..."
  64.          twait 1000
  65.          set online false
  66.  
  67.  4.  New Script Variables
  68.  
  69.      %NUM .......... String variable.  The phone number, ready to be dialed,
  70.                      from the phone directory.  For example: "ATDT123-4567".
  71.                      Set by the new script command, FETCH, or set auto-
  72.                      matically by GT POWER in the new DIAL SCRIPTs.
  73.  
  74.      %DELETED ...... Boolean variable.  Set to reflect the status of the last
  75.                      FETCHed entry from the phone directory.
  76.  
  77.      %CITY ......... String variable.  Set to the PCP CITY field from the
  78.                      last FETCHed entry from the phone directory.
  79.  
  80.      %MARKED ....... A boolean.  Added so that a script can determine when a
  81.                      directory entry is marked for circular dialing. This is
  82.                      especially useful in conjunction with the FETCH command.
  83.  
  84.      %BUSY ......... A boolean.  It works with the new DIALER command.  If
  85.                      the DIALER command fails to connect, i.e. %FAIL is TRUE,
  86.                      then the script can examine the %BUSY variable to see if
  87.                      the failure was due to a busy result.  If a busy result
  88.                      was found, then the script can choose to redial after a
  89.                      small interval via the DIALER command.
  90.  
  91.  5.  The number of dialing prefixes has been expanded from 4 to 6.  The new
  92.      prefixes are '?' and '&'.
  93.  
  94.  6.  Different versions of the DOOR.EXE program must now be used, as follows:
  95.  
  96.          DOOR.EXE ...... for use with GR and GRO versions.
  97.          TDOOR.EXE ..... for use with the GT and GTO versions.
  98.          FDOOR.EXE ..... for use with the GTF and GTOF versions.
  99.  
  100.  7.  Several screens have been removed from the program and placed into a
  101.      seperate file, GT.WIN.  This file is not user modifiable, but has been
  102.      created for technical reasons.  (To free up space on the "near heap").
  103.  
  104.      WARNING: You must put the GT.WIN file into the GTPATH directory to
  105.               run this release.  The GT.WIN file is not user modifiable,
  106.               if you change it, GT POWER will not run.
  107.  
  108.  8.  NOTE: To users of the SPAWN command, who reported it was failing.  I
  109.      have not been able to reproduce the failure, but note that you must
  110.      specify the FULL pathname when doing a SPAWN, including the extension.
  111.  
  112.                     SPAWN  c:\dos\edlin.com
  113.  
  114.  9.  New keyboard macro substitutions.
  115.  
  116.             %N1 ...... Comment #1 substitution
  117.             %N2 ...... Comment #2 substitution
  118.  
  119.      Picks up the comment fields from the entry in the phone directory for
  120.      the currently connected BBS.  This is very useful for passing secondary
  121.      passwords or other information via macro key.
  122.  
  123. 10.  When the Alt-H help screen is invoked, it no long erases the contents of
  124.      the screen it overlays.
  125.  
  126. 11.  The (E)xchange command in the phone directory now allows you
  127.      to call up a pick list.  Select the desired directory with the CR
  128.      or SPACEBAR, then press ESC to put it into effect.
  129.  
  130. 12.  The EXCH script command has been expanded.  Previously, it was able
  131.      to swap phone directories and macro files, now it is able to load
  132.      different config files.  Here is the syntax for the EXCH command:
  133.  
  134.               EXCH DIRECTORY file_name
  135.               EXCH MACROS file_name
  136.               EXCH CONFIG file_name
  137.  
  138.      In all cases, the extension must not be given, GT POWER will supply
  139.      .DIR for phone directories, .KEY for macros, and .CNF for config
  140.      files.
  141.  
  142. 13.  The maximum line length of the Alt-A command, ASCII Transmit, has been
  143.      increased from 255 bytes to 512 bytes.
  144.  
  145. 14.  Transparent Mode.
  146.  
  147.      The Ctrl-Down key is used to toggle the terminal mode of GT POWER into
  148.      Transparent Mode.  This mode is used when calling out to a BBS
  149.      and executing DOOR programs that require the usage of special keys,
  150.      such as the Alt or Fn keys.  In Transparent Mode, GT POWER will ignore
  151.      all command keystrokes, instead it will send them to the host computer
  152.      for processing.
  153.  
  154.      During Transparent Mode operation, the Status Line will be removed from
  155.      the screen, so that the host computer can have access to all 25 lines.
  156.  
  157. 15.  Support for F11 and F12!
  158.  
  159.      The support for F11 and F12 will work only on IBM compatible computers,
  160.      since GT POWER must supply an ISR to handle the keyboard.  This ISR
  161.      filters the scan codes from the keyboard, looking for 0x57 or 0x58 -
  162.      those are the scan codes for the F11 and F12 keys, then it stuffs them
  163.      direct into the BIOS key buffer.  Works pretty good.  Soooo, GT now
  164.      supports 48 function keys, but you must have an enhanced keyboard to use
  165.      them!
  166.  
  167.      For users of multi-tasking operating systems (or where conflicts exist
  168.      with TSR programs), a BIOS keyboard option is provided under the Alt-I
  169.      setup, Misc. Options.  This option should be set to TRUE when operating
  170.      under a multi-tasking operating system, or if a conflict with a TSR
  171.      develops.
  172.  
  173. 16.  Point 'n Shoot Setup Screens.
  174.  
  175.      The new GT POWER introduces a new style of screen to the Alt-I and Alt-M
  176.      setup.  It is point 'n shoot.  Use the arrow keys to move the highlight
  177.      bar, then press CR to select an